home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form FindResults
- Caption = "Results"
- ClientHeight = 1500
- ClientLeft = 1170
- ClientTop = 1590
- ClientWidth = 3570
- ClipControls = 0 'False
- Height = 1965
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 1500
- ScaleWidth = 3570
- Top = 1215
- Width = 3750
- Begin VB.ListBox ListResults
- BackColor = &H00C0C0C0&
- Height = 1200
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 3135
- End
- Attribute VB_Name = "FindResults"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- ' Set the size of the listbox to almost fill the
- ' form.
- Private Sub Form_Load()
- listresults.Move FindResults.ScaleLeft + 60, FindResults.ScaleTop + 60
- listresults.Width = FindResults.ScaleWidth - 60
- listresults.Height = FindResults.ScaleHeight - 60
- 'FindResults.Height = listresults.Height
- End Sub
- ' Keep the size of the listbox the same as the
- ' form, as the user might adjust the form to see
- ' more keys at a time.
- Private Sub Form_Resize()
- listresults.Move FindResults.ScaleLeft + 60, FindResults.ScaleTop + 60
- listresults.Width = FindResults.ScaleWidth - 60
- listresults.Height = FindResults.ScaleHeight - 60
- 'FindResults.Height = listresults.Height
- End Sub
-